From 1f516c94dc149b40fc11baebca2a6b6118b557e7 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 5 May 2006 13:58:13 +0100 Subject: [PATCH] Replace a bash-specific redirection in tools/ioemu/configure with a standard POSIX one which allows the Xen tools to be built with a POSIX shell other than bash. Signed-off-by: Herbert Xu --- tools/ioemu/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ioemu/configure b/tools/ioemu/configure index b4bf85cf51..087fc5a9ce 100755 --- a/tools/ioemu/configure +++ b/tools/ioemu/configure @@ -230,7 +230,7 @@ fi if test -z "$vnc"; then -if libvncserver-config --version >& /dev/null; then +if libvncserver-config --version > /dev/null 2>&1; then vnc=yes else vnc=no -- 2.30.2